home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / program / vimvcl30.zip / DEMO1.DPR < prev    next >
Text File  |  1996-09-20  |  280b  |  16 lines

  1. program Demo1;
  2.  
  3. uses
  4.   Forms,
  5.   DEMO1S in 'DEMO1S.PAS' {Form1},
  6.   demo1s1 in 'demo1s1.pas' {errorDlg},
  7.   vim32 in 'Source\Vim32.pas';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.CreateForm(TerrorDlg, errorDlg);
  14.   Application.Run;
  15. end.
  16.